home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE23
/
STARTUP
/
StubExe.dpr
< prev
next >
Wrap
Text File
|
1996-03-20
|
299b
|
15 lines
program StubExe;
uses
WinProcs,
Forms,
StubExeU in 'stubexeu.pas' {Form1};
{$R *.RES}
begin
OutputDebugString('APP: Beginning of project source'#13#10);
Application.CreateForm(TForm1, Form1);
Application.Run;
OutputDebugString('APP: End of project source'#13#10);
end.